71. 简化路径
为保证权益,题目请参考 71. 简化路径(From LeetCode).
解决方案1
Python
python
# 71. 简化路径
# https://leetcode-cn.com/problems/simplify-path/
################################################################################
class Solution:
def simplifyPath(self, path: str) -> str:
dp = []
for t in path.split("/"):
if t == "":
continue
elif t == ".":
continue
elif t == "..":
if len(dp) == 0:
continue
else:
dp.pop()
else:
dp.append(t)
return "/" + "/".join(dp)
################################################################################
if __name__ == '__main__':
solution = Solution()
print(solution.simplifyPath("/a/./b/../../c/"))
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28